home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / icecast_xss.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  86 lines

  1. #  This script was written by David Maciejak <david dot maciejak at kyxar dot fr>
  2. #  based on work from
  3. #  (C) Tenable Network Security
  4. #
  5. #  Ref:  Markus W÷rle
  6. #
  7. # This script is released under the GNU GPL v2
  8.  
  9. if(description)
  10. {
  11.  script_id(14390);
  12.  script_bugtraq_id(11021);
  13.  script_cve_id("CAN-2004-0781");
  14.  script_version ("$Revision: 1.3 $");
  15.  
  16.  name["english"] = "ICECast XSS";
  17.  script_name(english:name["english"]);
  18.  
  19.  desc["english"] = "
  20. The remote server runs a version of ICECast which is as old as or older
  21. than version 1.3.12.
  22.  
  23. This version is affected by a cross-site scripting vulnerability
  24. in the status display functionality. This issue is due to a failure 
  25. of the application to properly sanitize user-supplied input.
  26.  
  27. As a result of this vulnerability, it is possible for a remote attacker
  28. to create a malicious link containing script code that will be executed 
  29. in the browser of an unsuspecting user when followed. 
  30.  
  31. This may facilitate the theft of cookie-based authentication credentials 
  32. as well as other attacks.
  33.  
  34. Solution : Upgrade to a newer version.
  35. Risk factor : High";
  36.  
  37.  
  38.  
  39.  script_description(english:desc["english"]);
  40.  
  41.  summary["english"] = "check icecast version";
  42.  script_summary(english:summary["english"]);
  43.  
  44.  script_category(ACT_GATHER_INFO);
  45.  
  46.  
  47.  script_copyright(english:"This script is Copyright (C) 2004 David Maciejak",
  48.         francais:"Ce script est Copyright (C) 2004 David Maciejak");
  49.         
  50.  family["english"] = "Misc.";
  51.  script_family(english:family["english"]);
  52.  script_dependencie("http_version.nasl");
  53.  script_require_ports("Services/www", 8000);
  54.  exit(0);
  55. }
  56.  
  57. #
  58. # The script code starts here
  59. #
  60.  
  61. include("http_func.inc");
  62.  
  63. port = get_kb_item("Services/www");
  64. if(!port) port = 8000;
  65.  
  66. if(get_port_state(port))
  67. {
  68. soc = open_sock_tcp(port);
  69. if(soc)
  70. {
  71.  req = http_head(item:"/", port:port);
  72.  send(socket:soc,
  73.     data:req);
  74.  
  75.   r = http_recv(socket:soc);
  76.   close(soc);
  77.   str = strstr(r, "icecast");
  78.   if(str)
  79.   {
  80.     if(ereg(pattern:"icecast/1\.3\.([0-9]|1[0-2])[^0-9]", string:str))
  81.       security_hole(port);
  82.   }
  83.    
  84.  }
  85. }
  86.